home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
oper_sys
/
emerald
/
emrldsys.lha
/
Language
/
Compiler
/
MAKETOKENNAMES
< prev
next >
Wrap
Text File
|
1990-08-16
|
255b
|
21 lines
#!/bin/csh -f
#
# @(#)MAKETOKENNAMES 1.3 3/17/89
#
ed - << theend
0r em.ccompiler.y
v/^%token/d
1,\$s;%token * *\([^ ]*\).*/\* ; /* \1 */ ;
1,\$s; *\*/[ ]*\$;,;
\$s/,\$//
1i
char *tokenNameTable[] = {
/* none */ "",
.
\$a
};
.
w tokenNames.c
q
theend